google.golang.org/grpc/internal/transport.dataFrame.h (field)

11 uses

	google.golang.org/grpc/internal/transport (current package)
		controlbuf.go#L148: 	h         []byte
		controlbuf.go#L901: 	if len(dataItem.h) == 0 && len(dataItem.d) == 0 { // Empty data frame
		controlbuf.go#L936: 	hSize := min(maxSize, len(dataItem.h))
		controlbuf.go#L940: 			buf = dataItem.h
		controlbuf.go#L945: 			copy(localBuf[:hSize], dataItem.h)
		controlbuf.go#L959: 	if dataItem.endStream && len(dataItem.h)+len(dataItem.d) <= size {
		controlbuf.go#L970: 	dataItem.h = dataItem.h[hSize:]
		controlbuf.go#L973: 	if len(dataItem.h) == 0 && len(dataItem.d) == 0 { // All the data from that message was written out.
		http2_client.go#L1047: 		h:         hdr,
		http2_server.go#L1104: 		h:           hdr,